home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Easy 2010 May
/
Mac Life Ubuntu.iso
/
casper
/
filesystem.squashfs
/
usr
/
share
/
doc
/
sg3-utils
/
examples
/
archive
/
llseek.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2004-08-09
|
319 b
|
15 lines
#ifndef LLSEEK_H
#define LLSEEK_H
#if defined(__GNUC__) || defined(HAS_LONG_LONG)
typedef long long llse_loff_t;
#else
typedef long llse_loff_t;
#endif
extern llse_loff_t llse_llseek(unsigned int fd,
llse_loff_t offset,
unsigned int origin);
#endif